The Challenge:
YouTube videos contain valuable information but watching them is time-consuming. This workflow lets you extract and refine key insights 2-3x faster than traditional note-taking while watching.
Go to NotebookLM and:
What you get from NotebookLM after processing the video:
`AI Snake Oil: Hype and Reality Here is the corrected transcript: { NEW YOUTUBE SOURCE Excerpts from the transcript of the video "AI Snake Oil: What Artificial Intelligence Can Do, What It Can't, and How to Tell the Difference" uploaded on the YouTube channel "MIT Shaping the Future of Work Initiative": [1] ASU OZDAGLAR: Maybe we should get started, right? Hi, everyone. It's a pleasure to welcome you all to tonight's talk with Professor Arvind Narayanan. The Schwarzman College of Computing is honored to co-host this event with MIT's Shaping the Future of Work Initiative...
In a workflow, at step 2 of "Step 2: Raw LLM Output" one hits a limit: the AI apps are not really well-made for text editing. At this point, it's great to have a sharp knife: your keyboard.
If your keyboard isn't sharp, you need to learn at least how to quit vim.
# Copy from clipboard to vim
pbpaste | vim -
# In vim, refine the content:
# - Split long sentences with Enter
# - Reorder with dd and p
# - Delete fluff with dw or dd
# - Use macros for repetitive edits
# Copy refined content back to clipboard
:%w !pbcopy
After Vim editing, you can iterate with ChatGPT until you have accumulated something to be worthy of saving.
When you have it, you can place it into an HTML template.
I'm using codebuff to generate HTML. I initially created this page with a in-lined command:
<!-- Add a link to an example HTML file. -->
When prompted to "Create an example file and add it to the commented line", `codebuff` helpfully provides a starting point for a 1-pager:
→ View example of codebuff-unintended-summaryI only asked for a file, but I forgot saying "placeholder" so it took more steps than I wanted. It takes experience to get used to working with LLMs. Take every chance. Don't underestimate how far you can go.
Your AI agent can fill in the template from Step 4, or you can do it easily in vim.
Share the information! Once you have an HTML file, it's trivial to publish it on val.town.
Example val structure:
import { Hono } from "npm:hono";
const app = new Hono();
app.get("/", (c) => {
return c.html(`...your content...`);
});
export default app.fetch;
For the val.town history navigators... this entire workflow demonstrates how to efficiently extract, refine, and publish information using the clipboard-vim loop technique combined with modern AI tools.